home *** CD-ROM | disk | FTP | other *** search
/ Aminet 28 / Aminet 28 (1998)(GTI - Schatztruhe)[!][Dec 1998].iso / Aminet / comm / mail / FTPMAL.lha / FTPMAL / mlist.rexx < prev   
OS/2 REXX Batch file  |  1998-08-22  |  197b  |  15 lines

  1. /* Part of FTPMALGUI.rexx */
  2.  
  3. options results
  4. address FTPMALGUI
  5. call open(c,"t:ftpmal.tmp",'w')
  6. i=0
  7. do until L=""
  8.     'list ID B POS 'i
  9.     L=result
  10.     call writeln(c,result)
  11.     i=i+1
  12. end
  13. call close(c)
  14. quit
  15.